-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
minor factorising #188
base: main
Are you sure you want to change the base?
minor factorising #188
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a large PR, so I may have missed some things, but I gave a review for my first pass through. Overall, the refactor looks great by breaking up the signer pkg into smaller packages.
cmd/horcrux/cmd/address.go
Outdated
@@ -6,11 +6,12 @@ import ( | |||
"fmt" | |||
"strings" | |||
|
|||
"github.com/strangelove-ventures/horcrux/pkg/pcosigner" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: let's just call this cosigner
instead of pcosigner
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes!
Will fix it.
Bump github.com/libp2p/go-libp2p from 0.22.0 to 0.27.8 in /test (strangelove-ventures#189)
A start to factorising the signer directory.
Will be easier in the future to "take" out the cosigner/signers etc into a separate packages and we can get ride of the signer directory.
Also added some misc documentation for references and futures use.